home *** CD-ROM | disk | FTP | other *** search
/ Champak 62 / Volume 62 - JOGO DISK .iso / Games / NinjaKid.swf / scripts / DefineSprite_271_mon2 / frame_3 / DoAction.as
Text File  |  2008-02-29  |  387b  |  20 lines

  1. function fn_HitTest()
  2. {
  3.    if(_root.nFlag_Dead == false)
  4.    {
  5.       if(mc_attack.hitTest(_root.mc_c1))
  6.       {
  7.          if(_root.nFlag_Attack == false)
  8.          {
  9.             _root.fn_CDamage();
  10.          }
  11.       }
  12.    }
  13.    else
  14.    {
  15.       clearInterval(this["interval_hit" + this._name]);
  16.    }
  17. }
  18. stop();
  19. this["interval_hit" + this._name] = setInterval(fn_HitTest,700);
  20.